home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 34
/
Aminet 34 (2000)(Schatztruhe)[!][Dec 1999].iso
/
Aminet
/
dev
/
c
/
PMM.lha
/
PMM
/
Developer
/
LibSrc
/
WarpHWBase.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1999-10-22
|
317 b
|
18 lines
#include <exec/libraries.h>
#include <proto/exec.h>
struct Library *WarpHWBase = NULL;
extern unsigned long _WarpHWBaseVer;
void _INIT_5_WarpHWBase()
{
if (!(WarpHWBase = OpenLibrary("WarpHW.library",_WarpHWBaseVer)))
exit(20);
}
void _EXIT_5_WarpHWBase()
{
if (WarpHWBase)
CloseLibrary(WarpHWBase);
}